Conditions | 1 |
Total Lines | 3 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { MigrationInterface, QueryRunner } from "typeorm" |
||
4 | |||
5 | public async up(queryRunner: QueryRunner): Promise<void> { |
||
6 | await queryRunner.query(`DELETE FROM "user" WHERE email = '[email protected]'`); |
||
7 | } |
||
14 |